{% extends 'base_dashboard.html' %} {% load site_tags %} {% block title %}Pay certification fee — {{ site_settings.institute_name }}{% endblock %} {% block content %}

{% if payment_kind == 'reattempt' %}Pay reattempt fee{% else %}Pay certification fee{% endif %}

{{ program.title }} · {% if application.promo_code %} {% format_price list_price %} {% format_price amount_due %} {{ application.promo_code.code }} {% else %} {% format_price amount_due %} {% endif %}

{% if payment_kind == 'reattempt' %}
You scored below {{ program.passing_score }}%. Pay the reattempt fee to try again ({{ application.attempts_remaining }} attempt{{ application.attempts_remaining|pluralize }} left).
{% endif %} {% if application.payment_rejection_reason %}
Previous payment proof was rejected. {{ application.payment_rejection_reason }} Please upload a clear new screenshot below.
{% endif %}
College / university promo code
{% if application.promo_code %}
Applied {{ application.promo_code.code }} for {{ application.promo_code.institute_name }} ({{ application.promo_code.discount_label }} · saved {% format_price application.discount_amount %})
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %}
{% if stripe_enabled %}
Pay with Stripe

Instant confirmation after successful payment.

{% csrf_token %}
{% endif %} {% if manual_enabled %}
Manual payment
{% if site.manual_payment_instructions %}
{{ site.manual_payment_instructions }}
{% endif %}
{% csrf_token %}
{{ form.payment_proof }}
{{ form.payment_note }}
{% endif %}
{% endblock %}